From 2b3b556d040b9482bded0ebc540fb64f6e18ed91 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 24 Jun 2009 11:16:08 +0100 Subject: [PATCH] x86 mca: Fix typo of MCA recovery flags The following patch fixes typo of MCA recovery flags. It should be '<<' instead of '<'. Signed-off-by: Kazuhiro Suzuki --- xen/arch/x86/cpu/mcheck/x86_mca.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/xen/arch/x86/cpu/mcheck/x86_mca.h b/xen/arch/x86/cpu/mcheck/x86_mca.h index cc3e1c1b44..85c624efe3 100644 --- a/xen/arch/x86/cpu/mcheck/x86_mca.h +++ b/xen/arch/x86/cpu/mcheck/x86_mca.h @@ -105,13 +105,13 @@ DECLARE_PER_CPU(cpu_banks_t, mce_banks_owned); */ /* MCA error has been recovered successfully by the recovery action*/ -#define MCA_RECOVERED (0x1 < 0) +#define MCA_RECOVERED (0x1 << 0) /* MCA error impact the specified DOMAIN in owner field below */ -#define MCA_OWNER (0x1 < 1) +#define MCA_OWNER (0x1 << 1) /* MCA error can't be recovered and need reset */ -#define MCA_NEED_RESET (0x1 < 2) +#define MCA_NEED_RESET (0x1 << 2) /* MCA error did not have any action yet */ -#define MCA_NO_ACTION (0x1 < 3) +#define MCA_NO_ACTION (0x1 << 3) struct mca_handle_result { -- 2.30.2